设置HTTP
响应的Header
信息。
function Http\Response->header(string $key, string $value, bool $ucwords = true);
$key
,Http
头的Key
$value
,Http
头的Value
$ucwords
是否需要对Key
进行Http
约定格式化,默认true
会自动格式化
- 设置失败,返回
false
- 设置成功,没有任何返回值
header
设置必须在end
方法之前$key
必须完全符合Http
的约定,每个单词首字母大写,不得包含中文,下划线或者其他特殊字符$value
必须填写$ucwords
设为true
,swoole底层会自动对$key
进行约定格式化
Swoole
底层不允许设置相同$key
的Http
头
$response->header('Content-Type', 'image/jpeg', false);
$response->header('content-type', 'image/jpeg', true);